home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1997 April: Mac OS SDK / Dev.CD Apr 97 SDK1.toast / Development Kits (Disc 1) / Apple Shared Library Manager / ASLM Examples / TestTools / Sources / MiscTests.exp < prev    next >
Encoding:
Text File  |  1996-11-19  |  743 b   |  40 lines  |  [TEXT/MPS ]

  1. /*
  2.     File:        MiscTests.exp
  3.  
  4.     Contains:    Export file for Miscellaneous tests
  5.  
  6.     Copyright:    © 1992-1994 by Apple Computer, Inc., all rights reserved.
  7.  
  8. */
  9.  
  10.  
  11. #include "MiscTests.h"
  12.  
  13. Library
  14. {
  15.     id = "appl:test$Misc1,1.2";
  16.     version = 1.0…1.2;
  17.     memory = client;
  18. };
  19.  
  20. Class TNoVTable;
  21. Class TStdVTable;
  22.  
  23. //
  24. //    ASLM cannot automatically detect static functions based on their mangled names
  25. //    when SCpp or MRC is used. Because of this, we have to explicity tell ASLM not to
  26. //    export static functions that we want to export from a function set instead.
  27. //
  28. Class TTimings
  29. {
  30. #if defined(__SC__) || defined(__MRC__)
  31.     dontexport = StaticFunc;
  32. #endif
  33. };
  34.  
  35. FunctionSet Timings
  36. {
  37.     id = "appl:test$Misc1FSet,1.2";
  38.     exports = TTimings::StaticFunc, ThrowException;
  39. };
  40.